Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/083-full screen image slider

style.css cody/solygambas/html-css-javascript-projects/083-full screen image slider/style.css
134 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap");

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

index.html cody/solygambas/html-css-javascript-projects/083-full screen image slider/index.html
315 Views
0 Comments
<!-- Based on Full Screen Responsive Image Slider by Brad Traversy (2019)
see: https://www.youtube.com/watch?v=wWWNrANNO1k -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
script.js cody/solygambas/html-css-javascript-projects/083-full screen image slider/script.js
202 Views
0 Comments
const slides = document.querySelectorAll(".slide");
const nextButton = document.getElementById("next");
const prevButton = document.getElementById("prev");
const auto = true;
const intervalTime = 5000;
let slideInterval;

const nextSlide = () => {